浏览器指纹获取.
├── fingerprintjs-master
│ ├── LICENSE
│ ├── code_of_conduct.md
│ ├── contributing.md
│ ├── docs
│ │ ├── api.md
│ │ ├── browser_support.md
│ │ ├── content_blockers.md
│ │ ├── extending.md
│ │ ├── migrating_v1_v3.md
│ │ ├── migrating_v2_v3.md
│ │ ├── typescript_support.md
│ │ └── version_policy.md
│ ├── package.json
│ ├── playground
│ │ ├── index.html
│ │ ├── index.ts
│ │ └── webpack.config.js
│ ├── readme.md
│ ├── resources
│ │ ├── content_blocking
│ │ │ ├── blocked_selectors
│ │ │ ├── filters.ts
│ │ │ ├── get_unique_filter_selectors.ts
│ │ │ ├── make_selectors_tester.ts
│ │ │ ├── selectors_tester.ts
│ │ │ └── utils.ts
│ │ ├── favicon.ico
│ │ ├── license_banner.txt
│ │ ├── logo.svg
│ │ └── pro_screenshot.png
│ ├── rollup.config.js
│ ├── src
│ │ ├── agent.test.ts
│ │ ├── agent.ts
│ │ ├── confidence.test.ts
│ │ ├── confidence.ts
│ │ ├── global.d.ts
│ │ ├── index.ts
│ │ ├── sources
│ │ │ ├── audio.test.ts
│ │ │ ├── audio.ts
│ │ │ ├── canvas.ts
│ │ │ ├── color_depth.ts
│ │ │ ├── color_gamut.test.ts
│ │ │ ├── color_gamut.ts
│ │ │ ├── contrast.test.ts
│ │ │ ├── contrast.ts
│ │ │ ├── cookies_enabled.ts
│ │ │ ├── cpu_class.ts
│ │ │ ├── device_memory.test.ts
│ │ │ ├── device_memory.ts
│ │ │ ├── dom_blockers.test.ts
│ │ │ ├── dom_blockers.ts
│ │ │ ├── font_preferences.test.ts
│ │ │ ├── font_preferences.ts
│ │ │ ├── fonts.ts
│ │ │ ├── forced_colors.test.ts
│ │ │ ├── forced_colors.ts
│ │ │ ├── hardware_concurrency.ts
│ │ │ ├── hdr.test.ts
│ │ │ ├── hdr.ts
│ │ │ ├── index.ts
│ │ │ ├── indexed_db.test.ts
│ │ │ ├── indexed_db.ts
│ │ │ ├── inverted_colors.test.ts
│ │ │ ├── inverted_colors.ts
│ │ │ ├── languages.ts
│ │ │ ├── local_storage.ts
│ │ │ ├── math.test.ts
│ │ │ ├── math.ts
│ │ │ ├── monochrome.test.ts
│ │ │ ├── monochrome.ts
│ │ │ ├── open_database.ts
│ │ │ ├── os_cpu.ts
│ │ │ ├── platform.ts
│ │ │ ├── plugins.ts
│ │ │ ├── reduced_motion.test.ts
│ │ │ ├── reduced_motion.ts
│ │ │ ├── screen_frame.test.ts
│ │ │ ├── screen_frame.ts
│ │ │ ├── screen_resolution.ts
│ │ │ ├── session_storage.ts
│ │ │ ├── timezone.ts
│ │ │ ├── touch_support.test.ts
│ │ │ ├── touch_support.ts
│ │ │ ├── vendor.ts
│ │ │ ├── vendor_flavors.test.ts
│ │ │ └── vendor_flavors.ts
│ │ └── utils
│ │ ├── async.test.ts
│ │ ├── async.ts
│ │ ├── browser.test.ts
│ │ ├── browser.ts
│ │ ├── data.test.ts
│ │ ├── data.ts
│ │ ├── dom.ts
│ │ ├── entropy_source.test.ts
│ │ ├── entropy_source.ts
│ │ ├── hashing.test.ts
│ │ ├── hashing.ts
│ │ └── misc.ts
│ ├── terser.config.js
│ ├── tests
│ │ ├── integration.test.ts
│ │ ├── karma.browserstack.config.js
│ │ ├── karma.local.config.js
│ │ └── utils
│ │ ├── index.ts
│ │ ├── mock_match_media.ts
│ │ └── mock_properties.ts
│ ├── tsconfig.json
│ └── yarn.lock
└── 找例子网_fingerprintjs-master.zip
11 directories, 103 files
评论